/* General spacing tweaks for Dreamfire page */
.dreamfire-row-spacing {
    margin-top: 3rem;
}

.dreamfire-section {
    margin-bottom: 2rem;
}

/* Softer body text override so it isn’t shouting */
.dreamfire-body,
.dreamfire-clean-list li,
.dreamfire-plugin-list li,
.dreamfire-gallery-item figcaption {
    color: #e6e6e6;
    font-size: 18px;
    line-height: 1.7;
    text-transform: none;      /* override any global uppercase */
    letter-spacing: 0.01em;
}

/* Tech stack chips */
.dreamfire-chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.dreamfire-chip {
    padding: 0.35rem 0.9rem;
    border-radius: 9999px;
    background: rgba(211, 81, 0, 0.12);
    border: 1px solid rgba(211, 81, 0, 0.55);
    color: var(--accent-2, #F07900);
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.05em;
}

/* Clean list style for "Systems I Maintain" */
.dreamfire-clean-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.dreamfire-clean-list li {
    margin-bottom: 1rem;
}

/* Plugin list – less loud, more readable */
.dreamfire-plugin-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.dreamfire-plugin-list li {
    margin-bottom: 0.45rem;
}

.dreamfire-plugin-list a {
    color: var(--accent-2, #F07900);
    font-size: 18px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.03em;
    text-decoration: none;
}

.dreamfire-plugin-list a:hover {
    color: var(--accent);
    text-decoration: underline;
}

/* Screenshot / GIF gallery */
.dreamfire-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.dreamfire-gallery-item {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 16px;
    padding: 0.6rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
}

.dreamfire-gallery-item img {
    width: 100%;
    border-radius: 12px;
    display: block;
    margin-bottom: 0.4rem;
}

/* Slightly smaller subheaders on this page */
.dreamfire-page .about-text-subheader {
    font-size: 26px;
}

/* Larger screens: lay out gallery in two columns */
@media (min-width: 992px) {
    .dreamfire-gallery {
        grid-template-columns: 1fr 1fr;
    }
}